home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / ENT / DISK1938.ZIP / GAMES.ZOO / squasher.doc < prev    next >
Text File  |  1990-06-11  |  5KB  |  126 lines

  1.                          =================
  2.                           S Q U A S H E R
  3.                          =================
  4.                            requires EGA
  5.  
  6.                  (C) SPETER Software,  June 1990.
  7.  
  8.  
  9. INTRODUCTION
  10.   This program is loosely based on a BASIC program titled "squisher and
  11.   squasher" from "The big fat Book of Computer Games" by Tim Hartnell, 1984.
  12.  
  13.   This program was written using Borland's Turbo Pascal V.5.
  14.   The game requires an EGA or compatible adapter/display.
  15.  
  16. AIM
  17.   The objective is to get a number of bags (of gold), spread over a number of
  18.   levels, before one of the monsters gets you!
  19.  
  20.  
  21. PLAY
  22.   The game is simple but fun to play:
  23.     Each level is made of a maze (with holes in it);  as you move through the
  24.     maze, two monsters are trying to get you!  When you have got all the bags
  25.     from one level you are placed on the next level.  As you move around you
  26.     get points for each dot you run-over, and each bag is worth between 500
  27.     and 1000 points.
  28.  
  29.     The maze for each level is always slightly different, so you'll never play
  30.     on exactly the same maze...
  31.  
  32.   The game can be played on 9 skill levels.
  33.  
  34.  
  35. MOVEMENT
  36.   Two sets of movement keys can be used:
  37.  
  38.    1) on the keyboard main section:
  39.  
  40.      A (up)
  41.      |
  42.      Z (down)      < (left) -- > (right)
  43.  
  44.    2) on the numeric keypad:
  45.  
  46.                    8/up arrow (up)
  47.                           |
  48.    4/left arrow (left)  --+--    6/right arrow (right)
  49.                           |
  50.                  2/down arrow (down)
  51.  
  52.  
  53. ==============================================================================
  54. ADVANCED NOTES:
  55.   The file SQUASHER.INI contains the basic parameters for the game:
  56.  
  57.     1) the name of the file containing the high-score data.
  58.     2) the name of the file containing the description of the figures.
  59.     3) the name of the file containing the mazes.
  60.     4) the number of levels in the game.
  61.     5) the number of bags of gold on each level.
  62.  
  63.   All the files used by the program are ASCII (text) files, so they can be
  64.   edited using any editor (or a Word Processor with an ASCII save option).
  65.  
  66.  
  67.   DETAILS OF FILES
  68.     1) High-score data file:
  69.         This file contains 9 numbers, which are the current high-scores for
  70.         each of the nine skill levels!
  71.  
  72.     2) Figures data file:
  73.         This file contains the descriptions of the figures used in the game.
  74.         The figures are in the following order:
  75.            man1     -  a person facing out
  76.            man2     -  a side view of a person - with his back leg at an angle
  77.            man3     -  a side view of a person - with his back leg "up"
  78.            treasure -  image like a bag (of gold)
  79.            monster1 -  squasher - squat figure holding up a hammer
  80.            monster2 -  squisher - figure somewhat like a scorpion
  81.  
  82.         Each figure is made up of a number of dots (up to 80), in the data
  83.         file they have the following format:
  84.  
  85.            40               <-- number of points (pixels) in figure (max = 80)
  86.            -1 0   1 0       <-- x y  x y
  87.            ...                  relative coordinate pairs in the range:
  88.            ...                     (x = -4 to 3;  y = 0 to 13)
  89.  
  90.         To understand these figures rule up an 8 x 14 grid (-4 to 3 x 0 to 13)
  91.         and colour in each square in the list.  The shape you make for each
  92.         should be similar to each figure in the game!
  93.  
  94.     3) Maze data file:
  95.         This file contains the basic mazes used in the game.  When the player
  96.         moves to a new level the game randomly chooses one of the mazes, reads
  97.         it in from the file and then punches a random number of holes in the
  98.         walls of the maze!
  99.  
  100.         The format of this file is simple!
  101.            6                <-- number of mazes in the file.
  102.            X  X X           <-- a pattern of X's (or some other character)
  103.                                 defining walls 39 chars x 22 lines.
  104.            ======           <-- rows of ='s used to separate each maze
  105.  
  106.  
  107. ==============================================================================
  108. REGISTRATION
  109.   $10  To register the games disk.
  110.   $20  To register and receive the latest copy of the games disk.
  111.  
  112.  
  113. SOURCE LISTING
  114.   A commented source listing can be obtained by sending $75 to the address
  115.   below.
  116.  
  117. ==============================================================================
  118.    please address any comments to:
  119.  
  120.    SPETER Software
  121.    PO BOX 643
  122.    LANE COVE
  123.    N.S.W.   2066
  124.    AUSTRALIA
  125. ==============================================================================
  126.